home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / tobby_on_ice.swf / scripts / DefineButton2_304 / BUTTONCONDACTION on(press).as
Text File  |  2011-08-19  |  486b  |  25 lines

  1. on(press){
  2.    if(_root.stat != "main")
  3.    {
  4.       return undefined;
  5.    }
  6.    if(_root.returnWindowFlg)
  7.    {
  8.       return undefined;
  9.    }
  10.    if(_root.pauseFlg)
  11.    {
  12.       _root.pauseOff();
  13.       _root.instMC.removeMovieClip();
  14.       _root.instWindowFlg = false;
  15.    }
  16.    else
  17.    {
  18.       _root.pauseOn();
  19.       _root.attachMovie("inst","instMC",_root.depthWindow++);
  20.       _root.instMC._x = 320;
  21.       _root.instMC._y = 260;
  22.       _root.instWindowFlg = true;
  23.    }
  24. }
  25.